Contribution org.nuxeo.search.ui.pageproviders--providers
In component org.nuxeo.search.ui.pageproviders
org.nuxeo.search.ui.pageproviders
inside nuxeo-search-ui-7.10-HF03.jar /OSGI-INF/search-pageproviders-contrib.xml
This contribution is part of XML component Extension Point
Extension point providers of component PageProviderService.Contributed Items
XML Source
<extension point="providers" target="org.nuxeo.ecm.platform.query.api.PageProviderService">
<coreQueryPageProvider name="SAVED_SEARCHES">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:mixinType = 'SavedSearch'
AND cvd:contentViewName IS NOT NULL
AND dc:creator = ? AND ecm:isProxy = 0
AND ecm:isCheckedInVersion = 0
AND ecm:currentLifeCycleState != 'deleted'
AND SORTED_COLUMN IS NOT NULL
</pattern>
<sort ascending="true" column="dc:title"/>
</coreQueryPageProvider>
<coreQueryPageProvider name="SHARED_SAVED_SEARCHES">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:mixinType = 'SavedSearch'
AND cvd:contentViewName IS NOT NULL
AND dc:creator != ? AND ecm:isProxy = 0
AND ecm:isCheckedInVersion = 0
AND ecm:currentLifeCycleState != 'deleted'
AND SORTED_COLUMN IS NOT NULL
</pattern>
<sort ascending="true" column="dc:title"/>
</coreQueryPageProvider>
</extension>